Skip to content

Instantly share code, notes, and snippets.

@iannuttall
iannuttall / agentos-blueprint.md
Created August 14, 2026 12:10
AgentOS blueprint — reconstructed from Danny Postma's Agent SDK talk so an agent can build the system

AgentOS — Product Spec & Implementation Blueprint

Reconstructed from Danny Postma's talk How I Built My Own AgentOS on Claude's Agent SDK (So You Can Too) (2026). This document is both a product spec for a human and an implementation prompt for an AI coding agent. Build exactly this system. Do not invent features that are not specified here.

Role contracts and prompts in this file are reconstructed from the talk, not his verbatim files. Mark every reconstructed prompt in code comments and docs as such.


1. Goal and non-goals

@andrewpayne68
andrewpayne68 / ubuntu-thumbnails.md
Last active August 14, 2026 18:42
After latest April 2026 update to Ubuntu 24.04 LTS, thumbnails are no longer being generated

After latest April 2026 update to Ubuntu 24.04 LTS, thumbnails are no longer being generated

Steps to fix it:

Relax the security restriction (immediate fix): Open your terminal and run:

sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0

Clear the "failed" thumbnail cache: This forces Nautilus to retry generating thumbnails for files that previously failed:

@abundantbeing
abundantbeing / DeepThink Skill
Created June 27, 2026 01:50
Loop-based deep reasoning skill for complex multi-step problems. Triggers when: the user says "think deeper", "deep think", "think through this", "analyze this thoroughly", "reason through", "think step by step", or any task that requires more than surface-level analysis. Also triggers automatically when a task involves: architectural decisions,…
# DeepThink -- Loop-Based Reasoning Skill
## Core Concept
DeepThink turns complex reasoning into a repeatable loop. Instead of trusting the first plausible answer, the agent revisits the original problem through several passes: surface, explore, challenge, synthesize, and converge.
Each pass keeps the original prompt in view while adding new evidence, counterarguments, edge cases, and integration. The goal is not to make the answer longer. The goal is to make the answer better grounded.
This skill implements looped reasoning as a structured workflow any capable agent can use.
@oliuz
oliuz / LARAVEL_lumen.md
Created May 11, 2021 12:24 — forked from satoblacksato/LARAVEL_lumen.md
Apuntes y primeros pasos con LUMEN (Microframework de Laravel)

Lumen

Lumen es un micro-framework para PHP.

Lumen es una versión más liviana de Laravel y orientado más a la creación de APIs y microservicios, aunque también puedes usarlo para crear sitios web o lo que quieras.

Si es posible migrar de Lumen a Laravel

Microservicios:

name explain-diff-html
description Use when the user asks for a rich explanation of a code change, diff, branch, or PR. Produces HTML output.

Explain Diff

Please make me a rich, interactive explanation of the specified code change.

It should have these sections:

@InvalidLenni
InvalidLenni / official-discord-domains-list.md
Last active August 14, 2026 18:31
All (If I have forgotten a URL here, then please just let me know :)!) official Discord domains (Discord Domain List)

Official Discord Domains, let's reduce the scams!

Domain Description
dis.gd Discord's URL shorter (I like .gd as top-level domain)
discord.co Admin panel, this means not for us! (Not discord administrators / maybe staffs)
discord.com The domain is for e.g the homepage or message links etc
discord.design Dribbble profile shortlink
discord.dev Developer site shortlinks
discord.gg Invite shortlinks
@aarondfrancis
aarondfrancis / audit-your-codebase.md
Created August 14, 2026 15:20
A read-only, agent-orchestrated codebase audit prompt for data structures, state modeling, algorithms, and ownership.

Audit this entire codebase for materially useful simplifications in its data structures, state representation, control flow, algorithms, and ownership.

This is an audit-only exercise. Do not edit files, run tests, implement recommendations, commit, or push. Read-only inspection commands are allowed.

You are the coordinator. Continue until the complete codebase has been reviewed and the final audit is validated.

  1. Establish the coverage contract

Inspect the repository and inventory every identifiable subsystem.